home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / plotting / gnuplot3.lzh / gnuplot / makefile.vms < prev    next >
Makefile  |  1991-09-17  |  2KB  |  65 lines

  1. #
  2. # GNUPLOT Makefile
  3. # for VMS
  4. # use with the MAKE that was posted by Tony Ivanov (tony@gvgpvd.GVG.TEK.COM)
  5. # in comp.os.vms on 5 December 1988
  6. #
  7.  
  8. # NOOP  NO Optimiser
  9. CFLAGS = /NOOP/define=(NOGAMMA,MEMSET)
  10.  
  11. # /define=(<terminal>) in TERMFLAGS iff you wish to support <terminal>
  12. # see other terminal defines in term.h
  13.  
  14. TERMFLAGS = 
  15.  
  16. OBJS =  bitmap.obj,command.obj,contour.obj,eval.obj,graphics.obj,graph3d.obj, \
  17.         internal.obj,misc.obj,parse.obj,plot.obj,scanner.obj,setshow.obj, \
  18.         standard.obj,term.obj,util.obj,version.obj
  19.  
  20. CSOURCE1 = command.c setshow.c 
  21. CSOURCE2 = help.c graphics.c graph3d.c internal.c 
  22. CSOURCE3 = misc.c eval.c parse.c plot.c scanner.c standard.c 
  23. CSOURCE4 = bitmap.c term.c util.c version.c
  24. CSOURCE5 = [.term]aed.trm [.term]cgi.trm [.term]dumb.trm [.term]dxf.trm [.term]dxy.trm \
  25.     [.term]eepic.trm [.term]epson.trm [.term]fig.trm [.term]hp26.trm \
  26.     [.term]hp2648.trm [.term]hpgl.trm [.term]hpljii.trm 
  27. CSOURCE6 = [.term]impcodes.h [.term]imagen.trm [.term]object.h \
  28.     [.term]iris4d.trm [.term]kyo.trm [.term]latex.trm [.term]pc.trm 
  29. CSOURCE7 = [.term]post.trm [.term]qms.trm [.term]regis.trm [.term]sun.trm \
  30.     [.term]t410x.trm [.term]tek.trm [.term]unixpc.trm [.term]unixplot.trm \
  31.     [.term]v384.trm [.term]x11.trm gnuplot_x11.c
  32. CSOURCE8 = contour.c
  33.  
  34. all :   gnuplot.exe gnuplot.hlp gnuplot.hlb
  35.  
  36.  
  37. gnuplot.exe : $(OBJS)
  38.         link /exe=gnuplot $(OBJS) ,linkopt.vms/opt
  39.  
  40. gnuplot.hlp : doc2hlp.exe [.docs]gnuplot.doc [.docs]doc2hlp.com
  41.         $$@[.docs]doc2hlp.com
  42.  
  43. gnuplot.hlb : gnuplot.hlp
  44.     library/create/help gnuplot.hlb gnuplot.hlp
  45.  
  46. doc2hlp.exe: [.docs]doc2hlp.c
  47.         cc [.docs]doc2hlp.c
  48.         link doc2hlp,linkopt.vms/opt
  49.  
  50. term.obj: term.h term.c $(CSOURCE5) $(CSOURCE6) $(CSOURCE7)
  51.     $(CC) $(CFLAGS) $(TERMFLAGS) term.c
  52.  
  53. $(OBJS): plot.h
  54.  
  55. command.obj help.obj misc.obj: help.h
  56.  
  57. command.obj graphics.obj graph3d.obj misc.obj plot.obj setshow.obj term.obj: setshow.h
  58.  
  59. bitmap.obj term.obj: bitmap.h
  60.  
  61. clean :
  62.         purge/log
  63.         del/log *.obj;*
  64.